
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>404页面</title>
<style type="text/css">
body{ background: #fff;}
.concenter-err {width: 100%;}
#warpper {width: 1220px;margin: 0 auto;position: relative;clear: both;font-family: "微软雅黑";}
.clearfix {zoom: 1;}
.clearfix:after, .clearfix:before {display: block;overflow: hidden;height: 0;content: '\0020';}
/*.error-pic {background: url(/static/web/images/404.jpg) no-repeat;}*/
.error-page {width: 658px;height: 641px;margin: 44px auto 0;text-align: center;}
.error-page-mb37 {margin-bottom: 37px;}
.error-page-txt {margin-bottom: 29px;font-family: \5FAE\8F6F\96C5\9ED1;}
.error-page .error-page-txt h3 {font-size: 36px;color: #3B3B3B;font-weight: 900;padding-top: 6px;}
.error-page-txt .error-page-pl48 {padding-left: 48px;}
.error-page .error-page-txt p {font-size: 16px;color: #6B6B6B;padding-left: 56px;}
.error-page-btn {height: 32px;padding-left: 26px;}
.error-page-btn a:hover {background-color: #fd0a09;}
.clearfix:after {clear: both;}
.error-page-btn a {display: inline-block;width: 120px;height: 32px;margin: 0 15px;background-color: #fd0a09;color: white;line-height: 32px;font-size: 14px;text-decoration: none;}
</style>

</head>

<body>
<div class="concenter-err">
  <div id="warpper" class="clearfix">
   <div class="error-page error-pic">
      <div class="error-page-txt error-page-mb37">
          <img src="/static/web/images/404.jpg" alt="">
        <h3 class="error-page-pl48">抱歉！页面无法访问...</h3>
        <p>您可能输入了错误的网址，或者该页面已经不存在了哦。</p>
        <h4>倒计时 <span id="show"></span> 秒 返回首页</h4>
      </div>
      <div class="error-page-btn">
<!--        <a href="javascript:history.go(-1);" class="return-back">返回上一页</a>-->
        <a href="/" class="return-index">返回首页</a>
      </div>
    </div>
   </div>
</div>

<script type="text/javascript">
  var t = 5;//设定跳转的时间
  setInterval("refer()", 1000); //启动1秒定时
  function refer() {
    if (t == 0){
      location = "/"; //跳转的地址
    }
    document.getElementById('show').innerHTML = ""+ t +""; // 显示倒计时
    t--; // 计数器递减
  }
</script>

</body>
</html>
